home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / PowerMacOberon feb96 / Text / Find.Tool (.txt) < prev    next >
Encoding:
Oberon Text  |  1995-05-04  |  1.3 KB  |  35 lines  |  [TEXT/.Ob4]

  1. Syntax10.Scn.Fnt
  2. ParcElems
  3. Alloc
  4. LineElems
  5. Alloc
  6. Find.Diff ^
  7. Find.Domain ~
  8. Find.All ^
  9. Find.Clients ^    -- PowerMac only
  10. Find.Imports ^    -- PowerMac only
  11. Compare files.
  12. Search for a literal string in a sequence of files.
  13. Search for clients and imports of a specific module.
  14. Search for attributes in info elements
  15. Find.Diff ^
  16.     Compares two texts starting from the two most recent         selections
  17.     Sets new selections at the first position where the two         texts differ.
  18. Find.Domain {filename} ~
  19.     Specify the files in which Find.All should search for a             pattern.
  20. Find.All ^
  21.     Searches the selection in the files specified with                 Find.Domain.
  22.     Lists all lines containing the pattern.
  23. Find.AllInfo ^
  24.     The selection must be of the form
  25.         item = pattern
  26.     where item is one of the headings in an info element
  27.     (Title, Author, ...) and pattern is any character sequence
  28.     up to the end of the selection.
  29.     Lists all modules specified with Find.Domain containing 
  30.     the pattern in their info elements.
  31. Find.Clients (name | ^)
  32.     List all client modules which import module <name>.             Clients are only searched for in the current directory.
  33. Find.Imports (name | ^)
  34.     List all modules imported by module <name>. The                 modules are listed together with their keys.
  35.